+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
+2000-12-22 Alexander Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
+ Don't use isprint() for chars > 255.
+
2000-12-21 Havoc Pennington <hp@redhat.com>
* tests/testtreeview.c: more work
dummy[0] = keycode;
dummy[1] = 0;
- len = isprint (keycode) ? 1 : 0;
+ len = ((keycode < 255) && isprint (keycode)) ? 1 : 0;
gdk_fb_handle_key (keycode,
keycode,
modifier,